InputDataImport

The InputDataImport element is the parent node for historical and forecast input data. Other elements nested between the opening and closing InputDataImport tags define the particulars of the input data, such as the type of import, time range, record owner and record owner group information, time data records, time data values, item data records, and item data values.

The InputDataImport element has two required attributes:

Data categories and the associated data item types must be defined in the ELF device configuration prior to import of data records in a historical or forecast input file, so that they can be recognized and the UDCs associated with data item types can be retrieved.

If a data category or data item type is specified in an input file that the device configuration does not know about, then that particular data record will not be imported.

Properties

Property Description

Case Sensitive

Yes

Required

Yes

Number of Instances Allowed

1

Requires End Tag

Yes

Parent Element

CygNetELFImport

Child Elements

DatasetStartHour

DatasetEndHour

RecordOwners

Attributes

type

category

Attributes

Attribute Required Description Value Options

type

Yes

The type of input data.

String (in quotes). The value of the type enumeration attribute is "HISTORICAL" or "FORECAST."

category

Yes

The category type of input data.

String (in quotes). The value of the category attribute must match a category value previously defined in the ELF device configuration. Examples of input data category types include "Weather" or "Market Price."

sparse_times

No

Specifies whether to import sparsely populated hourly data without applying filling rules.

Note:
This attribute essentially disables all defined filling rules for the import.

String (in quotes). The value of the sparse_times attribute is "true" or "false."

  • "true" indicates that the import data contains sparsely populated hourly data.
  • The default value is "false", which indicates that the data does not contain sparsely populated hourly data.
  • If the sparse_times attribute is not included, "false" is assumed.

Example

<InputDataImport type="HISTORICAL" category="Weather" sparse_times="false">

.

.

</InputDataImport>


More:

Back to top